home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 June
/
Chip_2004-06_cd1.bin
/
software
/
tsw
/
tsw.exe
/
{app}
/
scripts
/
phpmultilinecomment.tss
< prev
next >
Wrap
Text File
|
2003-07-09
|
229b
|
15 lines
{
[Scriptsettings]
Scriptname=PHP multiline comment
ExecuteOnStartup=0
ExecuteOnlyOnce=0
}
program PHPMultilineComment;
var
Code: string;
begin
Code := '/*'+#13#10+GetSelText+#13#10+'*/';
SetSelText(Code);
end.